.header {
  position: absolute;
  z-index: 100;
  /* padding-top: 20px; */
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #fff;
  /* background-color: #f0f0f0fa !important; */
  transition: background 0.5s ease, height 0.5s ease, padding 0.5s ease;
}

/* 字体背景 */
.header__normal {
  top: 0;
  background-color: rgba(0, 0, 0, 0);
  height: 90px;
  /* padding-top: 20px; */
}

.header__active {
  top: 0;
  /* background-color: rgb(0, 0, 0); */
  background-color: #f0f0f0fa;
  height: 70px;
  padding-top: 5px;
}

.header_left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 35px;
}

.header_leftLogo {
  display: inline-block;
  margin-left: -100px;
  margin-right: -50px;
  width: 550px;
  height: 65px;
  background: url(../image/global_logo.svg);
  background-size: 78%;
  background-position: 58% -20%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .header_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 1%;
  }

  .header_leftLogo {
    display: inline-block;
    width: 360px;
    height: 70px;
    background: url(../image/global_logo.svg);
    background-size: 58%;
    background-position: 66% 40%;
    background-repeat: no-repeat;
  }
}

.header_leftLanguage {
  display: flex;
  justify-content: space-around;
  align-items: center;
  user-select: none;
  margin-left: 5px;
  height: 18px;
  width: 60px;
  border-radius: 13px;
  border: 2px solid #fff;
  overflow: hidden;
}

.header_leftLanguage>div {
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  width: 50%;
}

/*  */

.Language_link {
  color: #fff !important;
}

/*  */

.header_leftLanguageCN, .header_leftLanguageEN, .header_leftLanguageRu {
  background: transparent;
  color: #fff;
}

.header_leftLanguage .header_leftLanguageDivide {
  height: 100%;
  width: 2px;
  background-color: #fff;
}

.header_leftLanguage__active {
  background: #fff;
  color: rgb(109, 93, 93);
}

/* header left part --- End*/

/* header right part --- Start*/

.header_right {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 800px;
}

.header_right .header_rightLink {
  display: inline-block;
  position: relative;
  font-weight: 900;
  height: 40px;
  line-height: 40px;
  /* color: rgb(5, 39, 175); */
  color: rgb(1, 69, 142);
  /* color: rgb(0, 204, 255); */
  font-size: 14px;
  overflow: hidden;
}

.header_rightLinkFirst {
  font-size: 18px;
  height: 40px;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
  /* text-shadow: 0.5px 0.5px 1px black; */
}

.header_rightLinkSecond {
  font-size: 18px;
  height: 40px;
  /* color: rgb(114, 134, 255); */
  /* color: white; */
  color: rgb(0, 207, 255);
  text-shadow: 0.5px 0.5px 1px black;
  transform: translateY(0px);
  opacity: 0;
  transition: all 0.3s ease;
}

.header_right .header_rightLink:hover .header_rightLinkFirst {
  transform: translateY(-20px);
  opacity: 0;
}

.header_right .header_rightLink:hover .header_rightLinkSecond {
  transform: translateY(-40px);
  opacity: 1;
}

/* 到本页面，标题字体颜色 */
.header_right .header_rightLink__active {
  /* color: rgb(114, 134, 255); */
  /* color: white; */
  color: rgb(0, 207, 255);
  text-shadow: 0.5px 0.5px 1px black;
}

/* header right part --- End*/

#for_list {
  display: none;
}

@media screen and (max-width: 768px) {
  #for_list {
    position: absolute;
    cursor: pointer;
    display: block;
    z-index: 999;
    width: 38px;
    height: 30px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    transition: height 0.3s ease;
  }

  #for_list:hover {
    height: 38px;
  }

  #for_list:hover .line {
    /* background-color: rgb(114, 134, 255); */
    background-color: white;
  }

  #for_list .line {
    width: 29px;
    height: 3px;
    border-radius: 5px;
    background-color: #bdbdbd;
    transform: none;
    opacity: 1;
    transition: all 0.5s ease;
  }

  #list:checked~#for_list:hover {
    height: 30px;
  }

  #list:checked~#for_list .line {
    /* background-color: rgb(114, 134, 255); */
    background-color: white;
  }

  #list:checked~#for_list .line:nth-of-type(1) {
    transform-origin: left;
    transform: rotate(45deg);
  }

  #list:checked~#for_list .line:nth-of-type(2) {
    transform: translateX(100%);
    opacity: 0;
  }

  #list:checked~#for_list .line:nth-of-type(3) {
    transform-origin: left;
    transform: rotate(-45deg);
  }

  #list:checked~.header_right {
    height: 100vh;
    overflow: hidden;
  }

  .header_right {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 0vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
  }

  .header_right .header_rightLink {
    display: inline-block;
    position: relative;
    font-weight: 900;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    margin: 10px 0;
    overflow: hidden;
  }

  .header_rightLinkFirst {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
  }

  .header_rightLinkSecond {
    /* color: rgb(114, 134, 255); */
    color: rgb(0, 207, 255);
    transform: translateY(0px);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .header_right .header_rightLink:hover .header_rightLinkFirst {
    transform: translateY(-20px);
    opacity: 0;
  }

  .header_right .header_rightLink:hover .header_rightLinkSecond {
    transform: translateY(-40px);
    opacity: 1;
  }

  .header_right .header_rightLink__active {
    /* color: rgb(114, 134, 255); */
    /* color: white; */
    color: rgb(0, 207, 255);
  }
}